home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / program / funnel.zoo / sources / clock.c < prev    next >
C/C++ Source or Header  |  1993-04-11  |  4KB  |  126 lines

  1. /*##############################################################################
  2.  
  3. FUNNNELWEB COPYRIGHT
  4. ====================
  5. FunnelWeb is a literate-programming macro preprocessor.
  6.  
  7. Copyright (C) 1992 Ross N. Williams.
  8.  
  9.    Ross N. Williams
  10.    ross@spam.adelaide.edu.au
  11.    16 Lerwick Avenue, Hazelwood Park 5066, Australia.
  12.  
  13. This program is free software; you can redistribute it and/or modify
  14. it under the terms of Version 2 of the GNU General Public License as
  15. published by the Free Software Foundation.
  16.  
  17. This program is distributed WITHOUT ANY WARRANTY; without even the implied
  18. warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  19. See Version 2 of the GNU General Public License for more details.
  20.  
  21. You should have received a copy of Version 2 of the GNU General Public
  22. License along with this program. If not, you can FTP the license from
  23. prep.ai.mit.edu/pub/gnu/COPYING-2 or write to the Free Software
  24. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  25.  
  26. Section 2a of the license requires that all changes to this file be
  27. recorded prominently in this file. Please record all changes here.
  28.  
  29. Programmers:
  30.    RNW  Ross N. Williams  ross@spam.adelaide.edu.au
  31.  
  32. Changes:
  33.    07-May-1992  RNW  Program prepared for release under GNU GPL V2.
  34.  
  35. ##############################################################################*/
  36.  
  37.  
  38. /******************************************************************************/
  39. /*                                  CLOCK.C                                   */
  40. /******************************************************************************/
  41.  
  42. #include "style.h"
  43.  
  44. #include "as.h"
  45. #include "clock.h"
  46. #include "machin.h"
  47.  
  48. /******************************************************************************/
  49.  
  50. #define MAGIC_HEAD (565854L)
  51. #define MAGIC_TAIL (256194L)
  52.  
  53. /******************************************************************************/
  54.  
  55. LOCAL void ck_check P_((p_ck_t));
  56. LOCAL void ck_check(p_ck)
  57. p_ck_t p_ck;
  58. {
  59.  as_cold(p_ck!=NULL,"ck_check: Clock pointer is NULL.");
  60.  as_cold(p_ck->ck_mhead==MAGIC_HEAD,
  61.          "ck_check: Magic number at head of record is incorrect.");
  62.  as_cold(p_ck->ck_mtail==MAGIC_TAIL,
  63.          "ck_check: Magic number at tail of record is incorrect.");
  64. }
  65.  
  66. /******************************************************************************/
  67.  
  68. EXPORT void ck_ini(p_ck)
  69. p_ck_t p_ck;
  70. {
  71.  p_ck->ck_mhead = MAGIC_HEAD;
  72.  p_ck->ck_run   = FALSE;
  73.  p_ck->ck_csum  = 0.0;
  74.  p_ck->ck_rsum  = 0.0;
  75.  /* ck_csta and ck_rsta are undefined in a stopped clock. */
  76.  p_ck->ck_mtail = MAGIC_TAIL;
  77. }
  78.  
  79. /******************************************************************************/
  80.  
  81. EXPORT void ck_start(p_ck)
  82. p_ck_t p_ck;
  83. {
  84.  ck_check(p_ck);
  85.  as_cold(!p_ck->ck_run,"ck_start: Clock is already running!");
  86.  p_ck->ck_run  = TRUE;
  87.  p_ck->ck_csta = tim_cpu();
  88.  p_ck->ck_rsta = tim_real();
  89. }
  90.  
  91. /******************************************************************************/
  92.  
  93. EXPORT void ck_stop(p_ck)
  94. p_ck_t p_ck;
  95. {
  96.  ck_check(p_ck);
  97.  as_cold(p_ck->ck_run,"ck_stop: Clock is already stopped!");
  98.  p_ck->ck_run  = FALSE;
  99.  p_ck->ck_csum += tim_cpu () - p_ck->ck_csta;
  100.  p_ck->ck_rsum += tim_real() - p_ck->ck_rsta;
  101. }
  102.  
  103. /******************************************************************************/
  104.  
  105. EXPORT float ck_cpu(p_ck)
  106. p_ck_t p_ck;
  107. {
  108.  ck_check(p_ck);
  109.  as_cold(!p_ck->ck_run,"ck_cpu: Clock is running.");
  110.  return p_ck->ck_csum;
  111. }
  112.  
  113. /******************************************************************************/
  114.  
  115. EXPORT float ck_real(p_ck)
  116. p_ck_t p_ck;
  117. {
  118.  ck_check(p_ck);
  119.  as_cold(!p_ck->ck_run,"ck_real: Clock is running.");
  120.  return p_ck->ck_rsum;
  121. }
  122.  
  123. /******************************************************************************/
  124. /*                              End of CLOCK.H                                */
  125. /******************************************************************************/
  126.